net/http/internal.chunkedWriter.Wire (field)
6 uses
net/http/internal (current package)
chunked.go#L219: Wire io.Writer
chunked.go#L232: if _, err = fmt.Fprintf(cw.Wire, "%x\r\n", len(data)); err != nil {
chunked.go#L235: if n, err = cw.Wire.Write(data); err != nil {
chunked.go#L242: if _, err = io.WriteString(cw.Wire, "\r\n"); err != nil {
chunked.go#L245: if bw, ok := cw.Wire.(*FlushAfterChunkWriter); ok {
chunked.go#L252: _, err := io.WriteString(cw.Wire, "0\r\n")
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |